Task(TResult) Constructor (Func(Object, TResult), Object)

Task Parallel System.Threading

Initializes a new Task<(Of <(TResult>)>) with the specified function and state.

Namespace:  System.Threading.Tasks
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	function As Func(Of Object, TResult), _
	state As Object _
)
C#
public Task(
	Func<Object, TResult> function,
	Object state
)

Parameters

function
Type: System..::.Func<(Of <(Object, TResult>)>)
The delegate that represents the code to execute in the task. When the function has completed, the task's Result property will be set to return the result value of the function.
state
Type: System..::.Object
An object representing data to be used by the action.

Exceptions

ExceptionCondition
System..::.ArgumentException The function argument is null.

See Also